home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dirut / dirm13.zip / DIRM13.MAK < prev    next >
Text File  |  1990-11-02  |  1KB  |  25 lines

  1. #######################################################################
  2. # Make File for DIRM v1.3 (c)1990 by Michael Rice                     #
  3. # using Microsoft's MAKE, LINK, and MASM.                             #
  4. #                                                                     #
  5. # To create DIRM.EXE make sure MASM and MAKE (Not Borland's MAKE!)    #
  6. # are in your PATH and type the following:                            #
  7. #                                                                     #
  8. #                            make dirm13.mak                          #
  9. #                                                                     #
  10. # When finished you will have DIRM.EXE in your directory ready to     #
  11. # run!  If you get errors make sure you are accidently using          #
  12. # Borland's of some other MAKE.  You may have to move into the same   #
  13. # directory that Microsoft's make is in.                              #
  14. #######################################################################
  15.  
  16. dirm13.obj:   dirm13.asm
  17.         masm dirm13;
  18.  
  19. dirm_lib.obj:      dirm_lib.asm
  20.         masm  dirm_lib;
  21.  
  22. dirm.exe:   dirm13.obj dirm_lib.obj
  23.         link dirm13 dirm_lib, dirm.exe /m;
  24.  
  25.